home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Game Master (3rd Edition)
/
The Game Master 3rd edition.iso
/
files
/
gametors
/
warrisk
/
beep.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1984-10-19
|
174 b
|
13 lines
PROCEDURE beep(n:integer);
{ emits n beep sounds }
var i : integer;
BEGIN
for i := 1 to n do
begin
sound(440);
delay(250);
nosound;
end;
END;